home *** CD-ROM | disk | FTP | other *** search
- Path: news.bridge.net!news
- From: David Byrden <100101.2547@compuserve.com>
- Newsgroups: comp.lang.c++
- Subject: Re: copy ctor and derived classes
- Date: 14 Jan 1996 04:53:25 GMT
- Organization: self-employed
- Message-ID: <4da285$6v3@news.bridge.net>
- References: <DL38zz.50K@Virginia.EDU> <4d6u37$3b7@news.bridge.net>
- NNTP-Posting-Host: ppp-mia2-95.bridge.net
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 1.1N (Windows; I; 16bit)
-
-
- Ooops, I hit the wrong button and posted the above message
- before I finished editing it! It should read:
-
-
- Derived::Derived( const Derived& rhs ) // copy ctor
- : Base( rhs ) // invoke base's copy ctor
- { // to copy base part of object
-
- }
-
-
-
-